bootstrap unordered list no bullets

42

list remove bullets -

ul {
  list-style-type: none;
}

bootstrap unordered list no bullets -

<!-- Bootstrap 2 -->
<ul class="unstyled">
   <li>...</li>
</ul>

<!-- Bootstrap 3 & 4 -->
<ul class="list-unstyled">
   <li>...</li>
</ul>

Comments

Submit
0 Comments